home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / brightwhitebulb.gsh < prev    next >
Text File  |  2000-09-09  |  1KB  |  54 lines

  1. // defines bright yellow lava light
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_lavayellow_GSH
  8. #define INCLUDED_lavayellow_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13.  
  14. pgenerator Pgn_lavayellow
  15. {
  16.     type corona
  17.     life infinite
  18.     rate 1
  19.     
  20.     // stream direction
  21.     x    0
  22.     y    0
  23.     z    0
  24.     
  25.     // particle colour
  26.     red   1
  27.     green 1
  28.     blue  1
  29.     alpha 1
  30. }
  31.  
  32. light Lit_lavayellow
  33. {
  34.     red             1
  35.     green           1
  36.     blue            1
  37.     specular red    0.5
  38.     specular green    0.5
  39.     specular blue    0.5
  40.     range           30
  41. }
  42.  
  43. role Rol_lavayellow : Rol_PlacedObject
  44. {
  45.     shape Pgn_lavayellow
  46.     light Lit_lavayellow
  47.     identifier "lavayellowbulb"
  48. }
  49.  
  50. ////////////////////////////////////////////////////////////////////////////////////
  51.  
  52. // end wrapper - for preventing multiple or recursive inclusions
  53. #endif // !INCLUDED_lavayellow_GSH
  54.